home *** CD-ROM | disk | FTP | other *** search
/ Utilities Professional 1-1500 / Utilities Professional 1-1500 (1994)(WPD)[!].iso / 12511500 / var1310.dms / var1310.adf / UnpackLib / Programmers_Docs / UnpackLib_Docs next >
Text File  |  1992-09-02  |  30KB  |  838 lines

  1. ***************************************************************************
  2. *                        UNPACK.LIBRARY V38.40 DOC                        *
  3. *                                                                         *
  4. *                                                                         *
  5. *                             Update 11-02-94                             *
  6. *                                                                         *
  7. *                                                                         *
  8. *                          SAFE HEX INTERNATIONAL                         *
  9. ***************************************************************************
  10.  
  11.  
  12. Welcome  to  the release version of this library. I hope it's a library you
  13. can  use  in your virus killer or whatever you are doing. One of the things
  14. this library can do, is to help a viruskiller programmer to scan files that
  15. are crunched.
  16.  
  17.  
  18.      o  This  library  is  copyrighted  by  SHI  and  may  NOT  be  used in
  19.         commercial programs without a written permission from SHI.
  20.  
  21.      o  SHI  members can of course use this library for free. (But remember
  22.         to get a written permission.
  23.  
  24.      o  All  Shareware programmers can be SHI members, if they full-fill to
  25.         support our anti-virus work. (But remember to send your address and
  26.         program idea to SHI, to get a written permission).
  27.  
  28.  
  29. It's  forbidden  to  reassemble  (reverse engining) in any way this library
  30. code.  All the ideas to the way we unpacks files are copyrighted by SHI. If
  31. you  don't  respect  our  copyright - or, if you use this library without a
  32. written permission, SHI will contact the police to stop you.
  33.  
  34. Please  add  the  "WantedHelp"  (a  list  containing  wanted  crunchers for
  35. update), and remember to credit the author (Thomas Neumann) and SHI in your
  36. program as stated in the following:
  37.  
  38. ---------------------------------------------------------------------------
  39.  
  40. ABOUT SAFE HEX INTERNATIONAL
  41. If you know a virus programmer you can get a reward of $ 1000 for supplying
  42. his  name  and  address.  The fact is that the law punishes data crime very
  43. severely. (5 years in jail in most countries).
  44.  
  45. We  are  an international group with more than 500 members who have started
  46. trying to stop the spread of virus. Let me give you some example:
  47.  
  48.         1. Our motto is: "Safe Hex", who dares do anything else today?".
  49.         2. A virus bank containing more than 1800 Amiga and PC viruses for
  50.            supporting good shareware antivirus programs.
  51.         3. We help people to get money back lost by virus infection.
  52.         4. We write articles about virus problems for about 20 computer
  53.            magazines worldwide.
  54.         5. We release the newest and the best virus killers around from
  55.            about 25 wellknown programmers worldwide.
  56.         6. We have more than 35 PC and Amiga "Virus Centers" worldwide
  57.            where you can get free virus help by phoning our "Hotline", and
  58.            the newest killers translated in your own language at very
  59.            little cost.
  60.  
  61. For more information contact:
  62.  
  63.         SAFE HEX INTERNATIONAL            (Please send 2 "Coupon-Response
  64.         Erik Loevendahl Soerensen         International" and a self addres-
  65.         Snaphanevej 10                    sed envelope, if you want infor-
  66.         DK-4720 Praestoe                  mation about SHI by letter).
  67.         Denmark                             
  68.         Phone: + 45 55 99 25 12
  69.         Fax  : + 45 55 99 34 98
  70.  
  71. ---------------------------------------------------------------------------
  72.  
  73. ***************************************************************************
  74. *                            Table of contents                            *
  75. ***************************************************************************
  76.  
  77. unpack.library/AllocCInfo()
  78. unpack.library/DetermineFile()
  79. unpack.library/FreeCInfo()
  80. unpack.library/FreeFile()
  81. unpack.library/LoadFile()
  82. unpack.library/NewUnpackNum()
  83. unpack.library/SendCmd()
  84. unpack.library/TestHunk()
  85. unpack.library/Unpack()
  86. unpack.library/UnpackList()
  87. unpack.library/UnpackListNext()
  88. unpack.library/UnuseDrive()
  89. unpack.library/UseDrive()
  90.  
  91. ---------------------------------------------------------------------------
  92.  
  93. ***************************************************************************
  94. *                    Offsets and functions destiptions                    *
  95. ***************************************************************************
  96.  
  97.  
  98. AllocCInfo(34.0)                                           AllocCInfo(34.0)
  99.  
  100.  
  101. NAME
  102.         AllocCInfo - allocates an info structure.
  103.  
  104. SYNOPSIS
  105.         info = AllocCInfo ()
  106.          D0       -30
  107.  
  108.         APTR AllocCInfo(VOID);
  109.  
  110. FUNCTION
  111.         AllocCInfo()  allocates  an info structure the library uses when it
  112.         unpacks files. You just have to call this function in the beginning
  113.         of your program and then free it again with FreeCInfo() at the end.
  114.         I  have  made  this  function,  because  in future versions of this
  115.         library,  the  structure  will be bigger. Your program will then be
  116.         compatible for any future versions of this library.
  117.  
  118. INPUTS
  119.         None.
  120.  
  121. OUTPUTS
  122.         info  -  is a pointer to the allocated info structure. If there has
  123.                  occured an error, a zero is returned.
  124.  
  125. STRUCTURE
  126.         This is how the Info Structure is build:
  127.  
  128.         STRUCTURE UnpackInfo,0
  129.         APTR    UI_Filename
  130.         APTR    UI_Path
  131.         APTR    UI_Jump
  132.         APTR    UI_CruncherName
  133.         APTR    UI_DecrunchAdr
  134.         LONG    UI_DecrunchLen
  135.         UWORD   UI_ErrorNum
  136.         UWORD   UI_CrunchNum
  137.         UBYTE   UI_CrunchType
  138.         UBYTE   UI_Flag
  139.         APTR    UI_LoadNamePoi
  140.         LONG    UI_CrunchLen
  141.         APTR    UI_UserData             ;V35+
  142.         APTR    UI_TrackJump            ;V36+
  143.         APTR    UI_TrkErrJump           ;V36+
  144.         LONG    UI_Offset               ;V36+
  145.         UWORD   UI_Track                ;V36+
  146.         APTR    UI_ErrorMsg             ;V37+
  147.         APTR    UI_CrunchAdr            ;V37+
  148.         APTR    UI_LhaPattern           ;V38+
  149.  
  150. ; This Is Private, Do NOT Touch
  151.  
  152.         LONG    UI_CrunchLenTemp
  153.         LONG    UI_FileHandler
  154.         LONG    UI_Lock
  155.         LONG    UI_OldLock
  156.         APTR    UI_InfoAdr
  157.         APTR    UI_UnpackPoi
  158.         ULONG   UI_Temp
  159.         STRUCT  UI_Data,4*4             ;V35+
  160.         STRUCT  UI_LoadName,128
  161.         STRUCT  UI_ExecuteString,256
  162.         LABEL   UnpackInfo_SIZEOF
  163.  
  164.  
  165.         NOTE:
  166.         -----
  167.  
  168.         The private area is a bad idea to use, because the different fields
  169.         will maybe be moved around in future versions.
  170.  
  171.  
  172.         UI_Filename     is a pointer to the filename you want to scan.
  173.  
  174.         UI_Path         is  a  pointer  to a zero-terminated path where the
  175.                         library have to unpack archive files, such as a LHA
  176.                         archive. Please select a path where you haven't got
  177.                         some  important  data,  because  ALL  files will be
  178.                         deleted in the path if the DELETE flag is on.
  179.  
  180.         UI_Jump         This  is  a  pointer  to your scan routine. If this
  181.                         pointer are zero, no jump will be made.
  182.  
  183.         UI_CruncherName This is a pointer to the crunchers name the file is
  184.                         crunched with. The name are zero-terminated.
  185.  
  186.         UI_DecrunchAdr  This  is  the start address of the decrunched file.
  187.                         Your  scan routine just have to read this field and
  188.                         the UI_DecrunchLen field and scan that memory.
  189.  
  190.         UI_DecrunchLen  This is the length of the decrunched file.
  191.  
  192.         UI_ErrorNum     If  an  error  occur, the error number is stored in
  193.                         this   field.   See  the  unpack.i  file  for  more
  194.                         information.
  195.  
  196.         UI_CrunchNum    Here  is  the cruncher number stored. Each cruncher
  197.                         has  a  number  so  you can find out which cruncher
  198.                         there are used on the file.
  199.  
  200.         UI_CrunchType   Here   is  a  number  that  tells  about  the  file
  201.                         (archive, data or object file). Bit 7 indicate that
  202.                         the file are encrypted.
  203.  
  204.         UI_Flag         You  can  select  some different things the library
  205.                         has  to  do  when  it tests the file. See below for
  206.                         more info.
  207.  
  208.         UI_LoadNamePoi  This  is  just  a pointer to the UI_LoadName field.
  209.                         Use  this if you want to use the UI_LoadName field,
  210.                         because the field will be moved in future versions.
  211.  
  212.         UI_LoadName     Here  is  the filename stored, the library is about
  213.                         to decrunch, if the file is an archive.
  214.  
  215.         UI_CrunchLen    This is the length of the crunched file.
  216.  
  217.         UI_UserData     This  value  will be stored in A1 when the Unpack()
  218.                         function jump through the UI_Jump field. (V35+)
  219.  
  220.         UI_TrackJump    This field have the same function as UI_Jump, exept
  221.                         that  the library will only jump through this field
  222.                         when its unpack a track crunched file, such as DMS.
  223.                         The  library  will jump for every track it unpacks.
  224.                         You  have  to  return a return value in D0. You can
  225.                         select  between  these  values: 0 means every thing
  226.                         are   okay,   just   continue  and  -1  means  stop
  227.                         unpacking.  If this field are zero, no jump will be
  228.                         made (V36+).
  229.  
  230.         UI_TrkErrJump   The  library  will  jump through this pointer if an
  231.                         error  occurs.  There  are a lot of errors, such as
  232.                         checksum  error  etc.  You  routine  can  read  the
  233.                         UI_ErrorNum field in the info structure to see what
  234.                         went  wrong.  In  D0  you  have  to return the same
  235.                         values as in UI_TrackJump (V36+).
  236.  
  237.         UI_Offset       Here  will  be  stored the offset on a disk, ex. if
  238.                         the library just have unpacked track 40, there will
  239.                         be  stored  in this field: 40*22*512. You tracksave
  240.                         routine can read this field, UI_DecrunchAdr and the
  241.                         UI_DecrunchLen  fields  and just call the SendCmd()
  242.                         function with these values as parameters (V36+).
  243.  
  244.         UI_Track        Here  are  stored  the  track the library just have
  245.                         unpacked (V36+).
  246.  
  247.         UI_ErrorMsg     If  an error occurs, a pointer to the error message
  248.                         will be stored here (V37+).
  249.  
  250.         UI_CrunchAdr    This  is a pointer to the crunched data. If you use
  251.                         the  NoLoad  flag,  you  have  to  store  the start
  252.                         address and the length of the crunched data in this
  253.                         field and the UI_CrunchLen field (V37+).
  254.  
  255.         UI_LhaPattern   Here can you store a pointer to a Lha pattern. This
  256.                         means,  the  zero-terminated  string  this  pointer
  257.                         points to, will be copied at the end of the execute
  258.                         string. If you ex. have a string containing: "a#?",
  259.                         the  unpack.library  will  only  unpack  all  files
  260.                         starting with an "a". Zero in this pointer means no
  261.                         pattern (V38+).
  262.  
  263.                         NOTE:  This pointer will be ignored if you have set
  264.                         the UFB_OneFile bit in the UI_Flag.
  265.  
  266.  
  267. The flag have the following functions:
  268.  
  269.  
  270. Name         Bit             Function
  271. ---------------------------------------------------------------------------
  272. UFB_OneFile  0          Select  to  unpack  one file at a time or the whole
  273.                         archive. If set, one file is selected.
  274.  
  275. UFB_Delete   1          Delete  files  after scanning. Set = Delete. If you
  276.                         set  this bit on, ALL files AND directories will be
  277.                         deleted,  not  only  the files there were stored in
  278.                         the archive.
  279.  
  280. UFB_NoFree   2          If this bit is set, the decrunched file will NOT be
  281.                         freed  from memory after the Unpack() function have
  282.                         called through the UI_Jump pointer. If you set this
  283.                         bit,  you  have to free the memory by yourself with
  284.                         the FreeFile() function. (V35+)
  285.  
  286. UFB_Banner   3          This  bit are the give banner bit. If set, you will
  287.                         get the banner text in UI_DecrunchAdr. Your routine
  288.                         the  UI_TrackJump  pointer  points to, have to test
  289.                         the  UI_Offset field to see it's a banner or normal
  290.                         track there are given. If the UI_Offset are -1, its
  291.                         a banner. (V36+)
  292.  
  293. UFB_NoLoad   4          If  this  bit  are  set,  the  DetermineFile()  and
  294.                         Unpack()  functions  will  not  load  the file into
  295.                         memory,  but  use the UI_CrunchAdr and UI_CrunchLen
  296.                         field  in  the  Unpack  Info  structure  to get the
  297.                         crunched data (V37+).
  298.  
  299. UFB_Protect  5          If you set this bit and the UFB_NoLoad are cleared,
  300.                         the   DetermineFile()   function  will  change  the
  301.                         protections  bit  on the file to determine. It will
  302.                         set the RWED bits (V38+).
  303.  
  304.              6-7        Reserved
  305.  
  306. BUGS
  307.         None known.
  308.  
  309. SEE ALSO
  310.         FreeCInfo()
  311.  
  312. ---------------------------------------------------------------------------
  313.  
  314. DetermineFile(34.0)                                     DetermineFile(34.0)
  315.  
  316.  
  317. NAME
  318.         DetermineFile - scans  a  file  to find out which cruncher that are
  319.                         used.
  320.  
  321. SYNOPSIS
  322.         success = DetermineFile (info, filename)
  323.           D0          -42         A0      A1
  324.  
  325.         BOOL DetermineFile (APTR, char *);
  326.  
  327. FUNCTION
  328.         DetermineFile()  scans  a  file to find out which cruncher the file
  329.         are  crunched with. If the library can't find out, an error message
  330.         is  returned.  You  have  to  call  this  function  first, then the
  331.         Unpack() function, if no error has occured.
  332.  
  333. INPUTS
  334.         info     - is  the  memory  address  you  got from the AllocCInfo()
  335.                    function.
  336.  
  337.         filename - is  a  pointer  to  the  filename  you want to scan. The
  338.                    filename has to be zero-terminated.
  339.  
  340. OUTPUTS
  341.         success  - is an indicator that tells about the operation. If every
  342.                    thing is okay, a non-zero value is returned, else a zero
  343.                    will  be  returned. If you get an error, you can look at
  344.                    the  UI_ErrorNum  flag in the info structure to see what
  345.                    went wrong.
  346.  
  347. BUGS
  348.         None known.
  349.  
  350. SEE ALSO
  351.         Unpack()
  352.  
  353. ---------------------------------------------------------------------------
  354.  
  355. FreeCInfo(34.0)                                             FreeCInfo(34.0)
  356.  
  357.  
  358. NAME
  359.         FreeCInfo - frees the info structure again.
  360.  
  361. SYNOPSIS
  362.         FreeCInfo (info)
  363.            -36      A0
  364.  
  365.         void FreeCInfo (APTR);
  366.  
  367. FUNCTION
  368.         FreeCInfo()  frees  the info structure again. You have to call this
  369.         function at the end of your program.
  370.  
  371. INPUTS
  372.         info  - is  the  memory  address  you  got  from  the  AllocCInfo()
  373.                 function.  If the memory address is zero, you will NOT take
  374.                 a  trip  to  India  (and visit the GURU) when you call this
  375.                 function.
  376.  
  377. OUTPUTS
  378.         None.
  379.  
  380. BUGS
  381.         None known.
  382.  
  383. SEE ALSO
  384.         AllocCInfo()
  385.  
  386. ---------------------------------------------------------------------------
  387.  
  388. FreeFile(34.20)                                             FreeFile(34.20)
  389.  
  390.  
  391. NAME
  392.         FreeFile - frees a file from memory.
  393.  
  394. SYNOPSIS
  395.         FreeFile (info)
  396.           -84      A0
  397.  
  398.         void FreeFile (APTR);
  399.  
  400. FUNCTION
  401.         You have to call this function after you have called the LoadFile()
  402.         function  and  are  finished with the file. This function frees the
  403.         memory again.
  404.  
  405.         NOTE:  You MUST call this function instead of freeing the memory by
  406.         yourself!!
  407.  
  408. INPUTS
  409.         info - is   the  memory  address  you  got  from  the  AllocCInfo()
  410.                function.  You  can  call  always this function, even if the
  411.                LoadFile() function returned an error.
  412.  
  413. OUTPUTS
  414.         None.
  415.  
  416. BUGS
  417.         None known.
  418.  
  419. SEE ALSO
  420.         LoadFile()
  421.  
  422. ---------------------------------------------------------------------------
  423.  
  424. LoadFile(34.20)                                             LoadFile(34.20)
  425.  
  426.  
  427. NAME
  428.         LoadFile - loads a file into memory.
  429.  
  430. SYNOPSIS
  431.         success = LoadFile (info)
  432.           D0        -78      A0
  433.  
  434.         BOOL LoadFile (APTR);
  435.  
  436. FUNCTION
  437.         This  function allocate some memory with the files length and loads
  438.         the file into it. The filename are taken from the UI_Filename field
  439.         in  the  info  structure.  The  length  and address of the file are
  440.         stored in UI_DecrunchLen and UI_DecrunchAdr.
  441.  
  442.         V36.30:
  443.         -------
  444.  
  445.         If  the library runs under KS 37+, all caches will be cleared after
  446.         the file are loaded into the memory.
  447.  
  448. INPUTS
  449.         info    - is  the  memory  address  you  got  from the AllocCInfo()
  450.                   function.
  451.  
  452. OUTPUTS
  453.         success - is  an indicator that tells about the operation. If every
  454.                   thing  is  okay, the file length is returned, else a zero
  455.                   will  be returned and the allocated memory will be freed.
  456.                   If you get an error, you can look at the UI_ErrorNum flag
  457.                   in the info structure to see what went wrong.
  458.  
  459. BUGS
  460.         None known.
  461.  
  462. SEE ALSO
  463.         FreeFile()
  464.  
  465. ---------------------------------------------------------------------------
  466.  
  467. NewUnpackNum(37.32)                                     NewUnpackNum(37.32)
  468.  
  469.  
  470. NAME
  471.         NewUnpackNum - gives the number of unpackers in a structure.
  472.  
  473. SYNOPSIS
  474.         number = NewUnpackNum ()
  475.           A0        -108
  476.  
  477.         APTR NewUnpackNum (void);
  478.  
  479. FUNCTION
  480.         NewUnpackNum()  counts  the  number  of  unpackers  the library can
  481.         determine  and  unpack.  You  will  get  two  different  numbers of
  482.         unpackers. The first one (types) are the numbers of different types
  483.         the  library  can  unpack,  example  PowerPacker  Data, PowerPacker
  484.         Library etc. The second one (unpackers) is the number of unpackers,
  485.         example PowerPacker, Lha, Imploder etc.
  486.  
  487. INPUTS
  488.         None.
  489.  
  490. OUTPUTS
  491.         number - a pointer to a structure that look like this:
  492.  
  493.                 STRUCTURE NumberStruct,0
  494.                 UWORD   NS_Version      ;Library Version
  495.                 UWORD   NS_Revision     ;Library Revision
  496.                 UWORD   NS_Types
  497.                 UWORD   NS_Unpackers
  498.                 LABEL   NumberStruct_SIZEOF
  499.  
  500. BUGS
  501.         None known.
  502.  
  503. ---------------------------------------------------------------------------
  504.  
  505. SendCmd(36.30)                                               SendCmd(36.30)
  506.  
  507.  
  508. NAME
  509.         SendCmd - sends a command to a devive.
  510.  
  511. SYNOPSIS
  512.         error = SendCmd (dinfo, address, offset, length, cmd)
  513.          D0      -102     A0      A1       D1      D2    D0
  514.  
  515.         UBYTE SendCmd (APTR, APTR, ULONG, ULONG, UBYTE);
  516.  
  517. FUNCTION
  518.         The  only  thing  this  function does, is send the command with the
  519.         parameters  to  the  device  opened by the UseDrive() function. The
  520.         command will be sent by the DoIO() function.
  521.  
  522. INPUTS
  523.         dinfo   - is a pointer returned by the UseDrive() function.
  524.  
  525.         address - is a pointer to the data area.
  526.  
  527.         offset  - is the offset on the disk.
  528.  
  529.         length  - is the number of bytes to send.
  530.  
  531.         cmd     - is the command to send, like a read, write or update.
  532.  
  533. OUTPUTS
  534.         error   - is the error number returned by the device.
  535.  
  536. BUGS
  537.         None known.
  538.  
  539. SEE ALSO
  540.         UseDrive(), UnuseDrive()
  541.  
  542. ---------------------------------------------------------------------------
  543.  
  544. TestHunk(34.1)                                               TestHunk(34.1)
  545.  
  546.  
  547. NAME
  548.         TestHunk - tests the hunk structure in a file.
  549.  
  550. SYNOPSIS
  551.         success = TestHunk (address)
  552.           D0        -54       A0
  553.  
  554.         BOOL TestHunk (APTR);
  555.  
  556. FUNCTION
  557.         TestHunk()  tests  a  file  for  the hunk structure. You have to be
  558.         sure,  that  the file you want to test is an object file, else this
  559.         routine  will  return  an  error. You can check this by look in the
  560.         UI_CrunchType  flag  in  the info structure. You don't need to call
  561.         this function by yourself before you calling the Unpack() function,
  562.         because  the  Unpack()  function does that by itself. I'm not quite
  563.         sure  it  handles  the overlay hunk correctly, but it should handle
  564.         it.  If  you  find  a file you know are okay and this function says
  565.         it's defect, please send me the file so I can find the error.
  566.  
  567. INPUTS
  568.         address - is the start address of the file you want to test.
  569.  
  570. OUTPUTS
  571.         success - is  an indicator that tells about the operation. If every
  572.                   thing  is okay, a non-zero value is returned, else a zero
  573.                   will be returned.
  574.  
  575. BUGS
  576.         None known.
  577.  
  578. ---------------------------------------------------------------------------
  579.  
  580. Unpack(34.0)                                                   Unpack(34.0)
  581.  
  582.  
  583. NAME
  584.         Unpack - unpacks the file.
  585.  
  586. SYNOPSIS
  587.         success = Unpack (info)
  588.           D0       -48     A0
  589.  
  590.         BOOL Unpack (APTR);
  591.  
  592. FUNCTION
  593.         Unpack()  loads  the file into memory and unpacks it. When the file
  594.         is  unpacked,  the library will jump through the UI_Jump pointer to
  595.         your scan routine. If the UI_Jump contains a zero, the library will
  596.         not  jump.  All  what  your  scan  routine has to do, is to get the
  597.         UI_DecrunchAdr  and UI_DecrunchLen from the info structure and scan
  598.         that memory. If the file is an archive (Lha, zoo), the library will
  599.         unpack  the  archive  and  then read one file at a time and jump to
  600.         your scan routine.
  601.         If  you  need  a password to unpack a file, the library will open a
  602.         little  window  where  it asks for the password. The window will be
  603.         opened  on  the active screen, so if you open a screen by yourself,
  604.         the window will appear on it (if it's active).
  605.  
  606.         NOTE:
  607.         -----
  608.  
  609.         After  an  archive  is  unpacked  and  scanned,  all  the files and
  610.         directories  in  the  path you have selected will be deleted if the
  611.         DELETE  flag  is  on,  not  just the files there were stored in the
  612.         archive,  but  ALL  files will be deleted, so be sure to use a temp
  613.         directory or something like that.
  614.  
  615.         V35.22:
  616.         -------
  617.  
  618.         When this function jumps through the UI_Jump pointer, the following
  619.         registers will have these pointers:
  620.  
  621.         A0 = The start address of your routine (Unpack() makes a jsr (a0)).
  622.         A1 = Your pointer stored in the UI_UserData field.
  623.         A4 = The start address of the info structure.
  624.  
  625.         V36.30:
  626.         -------
  627.  
  628.         If the library runs under KS V37+, all caches will be cleared after
  629.         the decrunching.
  630.  
  631.         Track Crunched Files:
  632.         ---------------------
  633.  
  634.         This  function  will  jump  through UI_TrackJump instead of UI_Jump
  635.         when  it  unpacks  a  track crunched file. Such files are ex. a DMS
  636.         file.  The  routine have to return a value in D0. The values can be
  637.         0 to indicate that every things are ok and -1 to stop unpacking.
  638.  
  639.         V38.40:
  640.         -------
  641.  
  642.         This  function  are  now  made  recursive.  That means it will call
  643.         itself  until  the  file  can't  be decrunched any more. Now it can
  644.         unpack  a  lha  file in a lha file or a file crunched with imploder
  645.         and  powerpacker  etc.  If you have ex. select to unpack a lha file
  646.         at  RAM:,  the  first lha file will be unpacked there. If there are
  647.         more  lha  files,  the  next one will be unpacked in RAM:-/ and the
  648.         next in RAM:-/-/ etc.
  649.  
  650.         NOTE:
  651.         -----
  652.  
  653.         The  recursive  process  will  take a lot of stack and memory. Each
  654.         time  the  function  will  call itself, it will allocate a new info
  655.         structure and 256 bytes to the new path.
  656.  
  657. INPUTS
  658.         info     - is  the  memory  address  you  got from the AllocCInfo()
  659.                    function.
  660.  
  661. OUTPUTS
  662.         success  - is an indicator that tells about the operation. If every
  663.                    thing is okay, a non-zero value is returned, else a zero
  664.                    will  be  returned. If you get an error, you can look at
  665.                    the  UI_ErrorNum  flag in the info structure to see what
  666.                    went wrong.
  667.  
  668. BUGS
  669.         The  DMS Deep decruncher will not work correctly. I try to fix this
  670.         bug as soon as possible.
  671.  
  672. SEE ALSO
  673.         DetermineFile(), AllocCInfo()
  674.  
  675. ---------------------------------------------------------------------------
  676.  
  677. UnpackList(34.1)                                           UnpackList(34.1)
  678.  
  679.  
  680. NAME
  681.         UnpackList - makes an unpacker name list.
  682.  
  683. SYNOPSIS
  684.         name = UnpackList (info)
  685.          A1       -66       A0
  686.  
  687.         char * UnpackList (APTR);
  688.  
  689. FUNCTION
  690.         UnpackList()  gives  a  pointer  to  the first name to a packer the
  691.         library  can  determine & unpack. You can use this function, if you
  692.         want  to  make  a  list  over  all  the  unpackers  the library can
  693.         determine. Call this function first and then use UnpackListNext().
  694.  
  695. INPUTS
  696.         info - is   the  memory  address  you  got  from  the  AllocCInfo()
  697.                function.
  698.  
  699. OUTPUTS
  700.         name - is  a  pointer  to  a null-terminated string where the first
  701.                name are stored.
  702.  
  703. BUGS
  704.         None known.
  705.  
  706. SEE ALSO
  707.         UnpackListNext()
  708.  
  709. ---------------------------------------------------------------------------
  710.  
  711. UnpackListNext(34.1)                                   UnpackListNext(34.1)
  712.  
  713.  
  714. NAME
  715.         UnpackListNext - reads the next name in the unpacker list.
  716.  
  717. SYNOPSIS
  718.         success,name = UnpackListNext (info)
  719.           D0     A1         -72         A0
  720.  
  721.         APTR UnpackListNext (APTR);
  722.  
  723. FUNCTION
  724.         UnpackListNext()  gives  a pointer to the next name to a packer the
  725.         library  can  determine & unpack. You can use this function, if you
  726.         want  to  make  a  list  over  all  the  unpackers  the library can
  727.         determine.  Call  the UnpackList() function first and then use this
  728.         function.
  729.  
  730. INPUTS
  731.         info    - is  the  memory  address  you  got  from the AllocCInfo()
  732.                   function.
  733.  
  734. OUTPUTS
  735.         name    - is  a  pointer to a null-terminated string where the next
  736.                   name are stored.
  737.  
  738.                   V37.32
  739.                   ------
  740.  
  741.                   This  pointer will also be zero when the success flag are
  742.                   zero. This are only made for C-programmers.
  743.  
  744.         success - if  this  contains a zero, there are no more crunchers in
  745.                   the list. Otherwise it will contain a non-zero value.
  746.  
  747. BUGS
  748.         None known.
  749.  
  750. SEE ALSO
  751.         UnpackList()
  752.  
  753. ---------------------------------------------------------------------------
  754.  
  755. UnuseDrive(36.30)                                         UnuseDrive(36.30)
  756.  
  757.  
  758. NAME
  759.         UnuseDrive - give back the drive to DOS.
  760.  
  761. SYNOPSIS
  762.         UnuseDrive (dinfo)
  763.            -96       A0
  764.  
  765.         void UnuseDrive (APTR);
  766.  
  767. FUNCTION
  768.         This function closes the device again and make the drive unbusy.
  769.  
  770. INPUTS
  771.         dinfo - is the pointer returned by the UseDrive() function.
  772.  
  773. OUTPUTS
  774.         Nothing.
  775.  
  776. BUGS
  777.         None known.
  778.  
  779. SEE ALSO
  780.         UseDrive(), SendCmd()
  781.  
  782. ---------------------------------------------------------------------------
  783.  
  784. UseDrive(36.30)                                             UseDrive(36.30)
  785.  
  786.  
  787. NAME
  788.         UseDrive - make a drive busy and ready for use.
  789.  
  790. SYNOPSIS
  791.         dinfo = UseDrive (info, drive)
  792.          D0       -90      A0     A1
  793.  
  794.         APTR UseDrive (APTR, char *);
  795.  
  796. FUNCTION
  797.         This  function  find out which device the drive given uses and open
  798.         it. Then it will make the drive busy, that means CLI/WorkBench will
  799.         not  be  able  to  use that drive until you unuse it. It's only you
  800.         that  can use it. This function are only made to give you a help to
  801.         write a track crunched-file saver.
  802.  
  803. INPUTS
  804.         info  - is  the  memory  address  you  got  from  the  AllocCInfo()
  805.                 function.
  806.  
  807.         drive - is a pointer to the drive you want to use, ex. DF0:, RAD:.
  808.  
  809. OUTPUTS
  810.         dinfo - is  a  pointer  to  a  structure  used  by the device. This
  811.                 structure  includes a IOStdReq structure and a message port
  812.                 structure.  If  you  get  a zero back, an error occurs. You
  813.                 can see in the UI_ErrorNum field to see want went wrong.
  814.  
  815. BUGS
  816.         None known.
  817.  
  818. SEE ALSO
  819.         UnuseDrive(), SendCmd()
  820.  
  821. ---------------------------------------------------------------------------
  822.  
  823.         I  really  hope  you  can use this library. See also the Unpack.IFF
  824.         file to see how to construct your program.
  825.  
  826.         If  you  find any bugs in the library or if you have some crunchers
  827.         there  are  not  in  the  library,  please send a bug report or the
  828.         crunchers to me, thanks! See in the "WantedHelp" for more info!
  829.  
  830.  
  831.    WE NEED YOUR HELP TO GET THIS LIBRARY EVEN BETTER, THANK YOU VERY MUCH!
  832.  
  833.  
  834.         Thomas Neumann       Member of the SHI Anti Virus Group.
  835.         Kongensgade 78
  836.         3550 Slangerup
  837.         Denmark
  838.